All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.ApplicationNotifications

public interface ApplicationNotifications
This interface wraps the Objective-C category defining delegate methods of the NSApplication class. The methods in this interface are notifications methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o applicationDidBecomeActive(Notification)
A wrapper for the - applicationDidBecomeActive: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationDidFinishLaunching(Notification)
A wrapper for the - applicationDidFinishLaunching: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationDidHide(Notification)
A wrapper for the - applicationDidHide: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationDidResignActive(Notification)
A wrapper for the - applicationDidResignActive: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationDidUnhide(Notification)
A wrapper for the - applicationDidUnhide: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationDidUpdate(Notification)
A wrapper for the - applicationDidUpdate: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationWillBecomeActive(Notification)
A wrapper for the - applicationWillBecomeActive: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationWillFinishLaunching(Notification)
A wrapper for the - applicationWillFinishLaunching: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationWillHide(Notification)
A wrapper for the - applicationWillHide: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationWillResignActive(Notification)
A wrapper for the - applicationWillResignActive: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationWillTerminate(Notification)
A wrapper for the - applicationWillTerminate: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationWillUnhide(Notification)
A wrapper for the - applicationWillUnhide: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).
 o applicationWillUpdate(Notification)
A wrapper for the - applicationWillUpdate: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

Methods

 o applicationWillFinishLaunching
 public abstract void applicationWillFinishLaunching(Notification notification)
A wrapper for the - applicationWillFinishLaunching: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationDidFinishLaunching
 public abstract void applicationDidFinishLaunching(Notification notification)
A wrapper for the - applicationDidFinishLaunching: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationWillHide
 public abstract void applicationWillHide(Notification notification)
A wrapper for the - applicationWillHide: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationDidHide
 public abstract void applicationDidHide(Notification notification)
A wrapper for the - applicationDidHide: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationWillUnhide
 public abstract void applicationWillUnhide(Notification notification)
A wrapper for the - applicationWillUnhide: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationDidUnhide
 public abstract void applicationDidUnhide(Notification notification)
A wrapper for the - applicationDidUnhide: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationWillBecomeActive
 public abstract void applicationWillBecomeActive(Notification notification)
A wrapper for the - applicationWillBecomeActive: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationDidBecomeActive
 public abstract void applicationDidBecomeActive(Notification notification)
A wrapper for the - applicationDidBecomeActive: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationWillResignActive
 public abstract void applicationWillResignActive(Notification notification)
A wrapper for the - applicationWillResignActive: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationDidResignActive
 public abstract void applicationDidResignActive(Notification notification)
A wrapper for the - applicationDidResignActive: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationWillUpdate
 public abstract void applicationWillUpdate(Notification notification)
A wrapper for the - applicationWillUpdate: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationDidUpdate
 public abstract void applicationDidUpdate(Notification notification)
A wrapper for the - applicationDidUpdate: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).

 o applicationWillTerminate
 public abstract void applicationWillTerminate(Notification notification)
A wrapper for the - applicationWillTerminate: Objective-C instance method associated to notifications sent by the Application class (known as the NSApplication Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index